home *** CD-ROM | disk | FTP | other *** search
/ People & Parliament - A …er's Guide to Westminster / People and Parliament - A Stranger's Guide to Westminster (1998)(House of Commons).iso / parl / 8bit80.dir / 00044_Script_gp menu loop < prev    next >
Text File  |  1998-03-23  |  443b  |  18 lines

  1. on enterFrame
  2.   global pointCursor
  3.   repeat with n = 17 down to 3
  4.     if the mouseCast = the number of member (the member of sprite 18) then exit
  5.     if rollover(n) then
  6.       puppetSprite n, TRUE
  7.       set the cursor of sprite n to pointCursor
  8.       set the cursor of sprite 18 to 0
  9.       set the ink of sprite n to 1
  10.     else
  11.       set the ink of sprite n to 5
  12.     end if
  13.   end repeat
  14. end
  15.  
  16. on exitFrame
  17.   go to the frame
  18. end